home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Users Group Library 1996 July / C-C++ Users Group Library July 1996.iso / vol_300 / 359_11 / patch5.000 / BIN_AOUT2EXE.BAT next >
DOS Batch File  |  1991-09-11  |  242b  |  15 lines

  1. @echo off
  2. if not exist %GCCBIN%\stub.exe goto errorns
  3. if not exist %1 goto errornf
  4. copy /b %GCCBIN%\stub.exe+%1 %1.exe
  5. del %1
  6. goto end
  7.  
  8. :errornf
  9. echo Can't find file %1
  10. goto end
  11.  
  12. :errorns
  13. echo Cannot find %GCCBIN%\STUB.EXE
  14. :end
  15.